home *** CD-ROM | disk | FTP | other *** search
- function Startup() {
- document.getElementById("minimumWidth").value = window.arguments[0];
- document.getElementById("minimumHeight").value = window.arguments[1];
- document.getElementById("maximumWidth").value = window.arguments[2];
- document.getElementById("maximumHeight").value = window.arguments[3];
- document.getElementById("widthModifier").value = window.arguments[4];
- document.getElementById("heightModifier").value = window.arguments[5];
- document.getElementById("widthModifierType").selectedIndex = window.arguments[6];
- document.getElementById("heightModifierType").selectedIndex = window.arguments[7];
- }
-
- function onOK(event) {
- window.opener.processCustomSizeOutput(
- document.getElementById("minimumWidth").value,
- document.getElementById("minimumHeight").value,
- document.getElementById("maximumWidth").value,
- document.getElementById("maximumHeight").value,
- document.getElementById("widthModifier").value,
- document.getElementById("heightModifier").value,
- document.getElementById("widthModifierType").selectedIndex,
- document.getElementById("heightModifierType").selectedIndex
- );
- return true;
- }
-
- function onCancel(event) {
- // Do nothing
-
- return true;
- }
-
-